added SSCLI 1.0
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / ATLShellExtDragAndDropHandler / stdafx.h
blobfd79c268cc2bf1ac188c2bf4e75ec8b2b568fe8e
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently,
3 // but are changed infrequently
5 #pragma once
7 #ifndef STRICT
8 #define STRICT
9 #endif
11 #include "targetver.h"
13 #define _ATL_APARTMENT_THREADED
14 #define _ATL_NO_AUTOMATIC_NAMESPACE
16 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
18 #include "resource.h"
20 // ATL
21 #include <atlbase.h>
22 #include <atlcom.h>
23 #include <atlctl.h>
25 using namespace ATL;
27 // Shell
28 #include <comdef.h>
29 #include <shlobj.h>
31 // STL
32 #include <string>
33 #include <list>
34 typedef std::list<std::basic_string<TCHAR>> string_list;